home *** CD-ROM | disk | FTP | other *** search
/ Libris Britannia 4 / science library(b).zip / science library(b) / DJGPP / GPP257.ZIP / cplusinc / bool.h < prev    next >
C/C++ Source or Header  |  1993-11-13  |  285b  |  14 lines

  1. // Defining TRUE and FALSE is usually a Bad Idea,
  2. // because you will probably be inconsistent with anyone
  3. // else who had the same clever idea.
  4. // Therefore:  DON'T USE THIS FILE.
  5.  
  6. #ifndef _bool_h
  7. #define _bool_h 1
  8.  
  9. #undef FALSE
  10. #undef TRUE
  11. enum bool { FALSE = 0, TRUE = 1 };
  12.  
  13. #endif
  14.